home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50b Issue 142 (CD142b) (August 1998).iso / full / nt / MSSql / I386 / sqlx86.exe / PTK / VBSQL / INIEXITW.BAS < prev    next >
Encoding:
BASIC Source File  |  1996-04-03  |  276 b   |  22 lines

  1. Sub ExitApplication ()
  2.  
  3. Rem
  4. Rem Exit SQL, then exit the application.
  5. Rem
  6.  
  7.    SqlExit
  8.    SqlWinExit
  9.    End
  10.  
  11. End Sub
  12.  
  13. Sub InitializeApplication ()
  14.  
  15. Rem
  16. Rem Initialize the connection to SQL Server
  17. Rem
  18.     SqlConn = 0
  19.     DBLIB_VERSION$ = SqlInit$()
  20. End Sub
  21.  
  22.